day1/exercise/collatz.py
author Puneeth Chaganti <punchagan@gmail.com>
Fri, 30 Apr 2010 12:46:14 +0530
changeset 392 534803f1ca11
parent 386 a0bec380b44f
child 425 5afcfce15e71
permissions -rw-r--r--
Added instruction for filename - pendulum.py.

a = int( raw_input( 'Enter number: ') )
while a != 4:
    print a,
    if a % 2 == 1:
        a = a * 3 + 1
    else:
        a /= 2
print 4, 2, 1