You are viewing a single comment's thread. Return to all comments →
import math
AB = int(input()) BC = int(input())
r = math.sqrt(AB**2 + BC**2)
theta = math.atan(AB / BC)
theta_degrees = math.degrees(theta)
print(f"{theta_degrees:.0f}\u00b0")
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())
r = math.sqrt(AB**2 + BC**2)
theta = math.atan(AB / BC)
theta_degrees = math.degrees(theta)
print(f"{theta_degrees:.0f}\u00b0")