day1/exercise/arm.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 12:01:11 +0530
changeset 181 3035997de161
parent 64 333092b68926
child 425 5afcfce15e71
permissions -rw-r--r--
Merged Asokan and Mainline branches.

cubes = []
for i in range(10):
    cubes.append(i ** 3)

for i in range(100, 1000):
    a = i % 10
    b = (i / 10) % 10
    c = (i / 100) % 10
    if i == cubes[a] + cubes[b] + cubes[c]:
        print "Armstrong Number: ", i