Find Angle MBC

  • + 0 comments
    import math
    AB = float(input())
    BC = float(input())
    t_rad = math.atan(AB/BC)
    t = round(math.degrees(t_rad))
    print(f"{t}\u00b0")