Thursday, 14 January 2016

20 Squared II

a = 2
while a > 0:
    a = a * a
    print (a)

#Change the 2, and compare