Find Angle MBC

  • + 0 comments

    Guys in a copy pen solve the Question using simple geometry then you will find the angle to be arctan of height and base then just apply it:

    import math a=int(input()) b=int(input()) rad=math.atan(a/b) print(round(math.degrees(rad)),chr(176),sep="")