write a program in python to check whether two numbers are greater or equal to each other
Answers
Answered by
18
Answer:
hi
Explanation:
#program in python to check whether two numbers are greater or equal to each other
a=int(input("enter the number"))
b=int(input("enter the number"))
if a==b:
print("they are equal")
elif a>b:
print(a,"is greater than",b)
elif a<b:
print(b,"is greater than",a)
____________________
:)
Similar questions