Find Angle MBC

  • + 0 comments
    import math
    
    a = float(input().strip())  
    b = float(input().strip())  
    
    theta_deg = math.degrees(math.atan2(a, b))
    print(str(int(round(theta_deg))), chr(176), sep="")