write an algorithm to input two numbers and check which is greater number
Answers
Answered by
2
Answer:
I think Google can gives you exact answer. It's my own personal experience.
Explanation:
Bye. Thank you. Please mark me as brainliest.
Answered by
2
Explanation:
a=int(input("enter the first number"))
b=int(input("enter the second number"))
if a>b :
print(a,"is the greater number")
else:
print(b,"is the greater number")
.#IT IS A PYTHON CODE
Similar questions