Find Angle MBC

  • + 0 comments

    Being well versed in the math class helps the most:

    # Enter your code here. Read input from STDIN. Print output to STDOUT
    import math
    
    AB = int(input())
    BC = int(input())
    
    
    
    AC = math.sqrt((AB ** 2) + (BC ** 2))
    print(f"{round(math.degrees(math.acos(BC/AC)))}\N{DEGREE SIGN}")