Find Angle MBC

  • + 0 comments

    import math

    a,b= int(input()), int(input())

    print(str(round(math.degrees(math.atan2(a,b))))+chr(176))