Find Angle MBC

  • + 0 comments
    import math
    
    AB = int(input())
    BC = int(input())
    
    print(f"{round(math.degrees(math.atan(AB/BC)))}\u00b0")