Num1 = int(input("Enter a number: ")) Num2 = int(input("Enter a number: ")) Num3 = int(input("Enter a number: ")) if Num1 > Num2 and Num1 > Num3: print("The highest value is", Num1) if Num2 > Num1 and Num2 > Num3: print("The highest value is", Num2) if Num3 > Num1 and Num3 > Num2: print("The highest value is", Num3)