Introduction To Python - Learn Python the hard way v2.0
Title: Exercise_30
#!usr/bin/python
a = 8
b = 8
c = 5
print "a=%d , b=%d , c=%d " %(a,b,c)
if a < b:
print "a is less than b"
elif a > b:
print "a is greater than b"
else:
print "a is equal to b"
if (b <= c & a):
print "b is less than equal to a and c"
elif (b >= c & a):
print "b is greater than equal to a and c"
