Find Angle MBC

  • + 1 comment

    For Python3 Platform

    from math import atan, degrees
    
    AB = int(input())
    BC = int(input())
    
    print(round(degrees(atan(AB/BC))), chr(176), sep="")