# Program explains How to take input from user and usage of 'if'operator
x = int(raw_input("Enter First number: "))
y = int(raw_input("Enter Second number: "))
if x > y:
print 'First number is greater then second'
elif x < y :
print 'Second number is greater then first'
else:
print 'Both the Numbers are equal'
# http://www.codeskulptor.org/#user21_bb6vkgWmQuyNwka.py
No comments:
Post a Comment