Computer Science, asked by javish3026, 7 months ago

write an appropriate selection statement (if) for each of the folloing (a) to check whether the value of variable num1 is greater then the value of num2 or not

Answers

Answered by mohitx618
0

Answer:

num1=int(input("enter the number"))

num2=int(input("enter the number"))

if num1 > num2:

print("num1 is greater than num2")

else:

print("num2 is greater than num 1")

Similar questions