#! python

# integer arith

a=4
print a

b=12+5
print b

c=b%a
print c


#! python

# trailing comma

i = 256*256
print 'The value of i is', i



#! python

# Fibonacci series:
# the sum of two elements defines the next
a, b = 0, 1
while b < 200:
       print b,
       a, b = b, a+b

