Find Angle MBC

  • + 0 comments

    from math import atan, degrees

    AB = int(input()) BC = int(input())

    print(f"{round(degrees(atan(AB/BC)))}\u00b0")