Find Angle MBC

  • + 0 comments

    import math

    a = int(input()) b = int(input())

    radies = math.atan(a/b) degrees = math.degrees(radies) round = round(degrees) e = chr(176) print(f"{round}{e}")