Find Angle MBC

  • + 0 comments
    BC = int(input())
    AB = int(input())
    
    angle_theta1  = round(math.degrees(math.atan(AB/BC)));
    degree_sign = "\u00B0"
    angle = round(90-angle_theta1)
    
    print(f"{round(90-angle_theta1)}{degree_sign}")