Find Angle MBC

  • + 1 comment

    import math

    ab = int(input()) bc = int(input())

    angle_rad = math.atan2(ab, bc) angle_deg = math.degrees(angle_rad)

    print(round(angle_deg)) out is 45 just number but need 45° how