Find Angle MBC

  • + 0 comments
    import math
    ab, bc = int(input()), int(input())
    print(f'{round(math.degrees(math.atan(ab/bc)))}{chr(176)}')