Q). Write a program to input a number and check whether its greater than 50 if yes print "greater" in python.
Answers
Answered by
51
n=int(input("enter a no"))
if n>50:
print("greater")
else:
print ("not greater")
hope it helps
please mark as brainliest
Answered by
87
Answer:
Here you go,
Similar questions