You are viewing a single comment's thread. Return to all comments →
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
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()) 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