Find Angle MBC

  • + 0 comments

    For Python3 Platform

    from math import degrees, atan
    
    AB = int(input())
    BC = int(input())
    
    print(f"{round(degrees(atan(AB/BC)))}\u00B0")