InterviewSolution
Saved Bookmarks
| 1. |
Write a program in python to check whether two numbers are greater or equal to each other |
|
Answer» hiExplanation:#PROGRAM in python to CHECK whether two numbers are greater or equal to each othera=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 |
|