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