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