You are viewing a single comment's thread. Return to all comments →
import math
AB = int(input().strip()) BC = int(input().strip())
angle_rad = math.atan2(AB, BC) angle_deg = math.degrees(angle_rad) result = round(angle_deg)
print(f"{result}{chr(176)}")
Seems like cookies are disabled on this browser, please enable them to open this website
Find Angle MBC
You are viewing a single comment's thread. Return to all comments →
import math
AB = int(input().strip())
BC = int(input().strip())
angle_rad = math.atan2(AB, BC)
angle_deg = math.degrees(angle_rad)
result = round(angle_deg)
print(f"{result}{chr(176)}")