Computer Science, asked by aman90912, 7 months ago

WAP to input 2 number and print the highest using if​

Answers

Answered by AnshumanRai9910
1

Answer:

Using Python ...

Explanation:

num1 = int(input('Enter first number : ')

num2 = int(input('Enter second number : ')

if num1 > num2:

   print('Greater number is : ',num1)

else:

   print('Greater number is : ',num2)

Similar questions