Computer Science, asked by Shaell29, 2 months ago

write a program in python to check whether two numbers are greater or equal to each other

Answers

Answered by anushka070603
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