Find Angle MBC

  • + 0 comments
    import math
    
    AB, BC = int(input()), int(input())
    ANGLE = math.degrees(math.atan2(AB, BC))
    print(f"{int(math.floor(ANGLE + 0.5))}{chr(176)}")