Find Angle MBC

  • + 0 comments
    import math
    
    ab= int(input())
    bc = int(input())
    
    hypo = math.atan(ab/bc)
    angle = math.degrees(hypo)
    
    print(f"{angle:.0f}\u00b0")