WAP to input 2 number and print the highest using if
Answers
Answered by
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
English,
3 months ago
Social Sciences,
3 months ago
Science,
8 months ago
Physics,
8 months ago
Geography,
1 year ago