Find Angle MBC

  • + 1 comment
    AB = int(input())
        BC = int(input())
        angle = math.degrees(math.atan2(AB,BC))
        degree = int(round(angle))
        print(str(degree)+ '\u00B0')
    

    This code works but can anyone explain what atan2 is??