Find Angle MBC

  • + 0 comments

    import math ab= float(input()) bc= float(input()) angle_mbc= math.degrees(math.atan(ab/bc)) print(str(round(angle_mbc)) + chr(176))