a = int(input('Enter a number')) b = int(input('Enter a number')) c = int(input('Enter a number')) if a < b > c: print('the highest value is', b) if b < a > c: print('the highest value is', a) if a < c > b: print('the highest value is', c)