num1 = int(input("Enter the first number?:")) num2 = int(input("Enter the second number?:")) num3 = int(input("Enter the third number?:")) highest = max(num1, num2, num3) print("The highest value is", highest)