num1 = eval(input("Enter number: ")) num2 = eval(input("Enter another number: ")) #three-way branch. multiway branch if num1 == num2: print("they equal!") elif num1 > num2: print("first is bigger than second") else: print("first is smaller than second")