Find Angle MBC

  • + 0 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')