CSC231 multBy3.py Program
--D. Thiebaut 08:14, 3 October 2012 (EDT)
# multBy3.py
# D. Thiebaut
# A simple program showing how Python deals with
# integer overflow.
# (Python V 2.7)
# To run:
# python multBy3.py
#
a = 2
for i in range( 70 ):
print a
a = a * 3