Find Angle MBC

  • + 0 comments

    Enter your code here. Read input from STDIN. Print output to STDOUT

    import math a=int(input()) b=int(input())

    c=math.degrees(math.atan2(a,b)) d=round(c) e=chr(176) print(f"{d}{e}") *