num1 = int(input( "Enter a number:" ) ) num2 = int(input( "Enter a number:" ) ) num3 = int(input( "Enter a number:" ) ) if num1 > num2 and num3 : print( "the hightest value is", num1) elif num2 > num3 and num1 : print( "the hightest value is", num2) elif num3 > num1 and num2 : print("the hightest value is", num3)