Find Angle MBC

  • + 0 comments
    import math
    
    ab = int(input())
    bc = int(input())
    
    print(round(math.degrees(math.atan(ab / bc))), chr(176), sep="")