num1 = float(input("Enter a number: ")) num2 = float(input("Enter a number: ")) num3 = float(input("Enter a number: ")) value = max(num1, num2, num3) print ("The highest number is:", value)