To check which number is greater among two number using python

# indentation is very important 

a=5

b=6

if a>b:

     print(" a is greater")

else:

   print("b is greater")

Comments

Popular posts from this blog