Lab 2

#Cristhian Jimenez
#Lab 2
# Date: 10/4/13

x = input (‘Enter the first number: ‘)
y = input (‘Enter the second number: ‘)

print x+y
print x-y
print x*y
print x/y

if x > y:
print(“x is greater than y”)

else:
print(“y is greater than x”)