You are viewing a single comment's thread. Return to all comments →
import math x = int(input()) y = int(input()) a = math.sqrt((x*x)+(y*y)) b = a/2
z = math.acos((y*y)/(2*y*b)) k = math.degrees(z) print(f'{int(round(k))}\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 →
Law of Cosines
import math x = int(input()) y = int(input()) a = math.sqrt((x*x)+(y*y)) b = a/2
z = math.acos((y*y)/(2*y*b)) k = math.degrees(z) print(f'{int(round(k))}\u00B0')