Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

value1 = int(input('user enter first number '))

value2 = int(input('user enter second number '))

if value1<value2:
print('first number is less than second number')
elif value1>value2:
print('first number is greater than second number')
else:
print('first number and second number are equal')

You might also like