All pastes #2010637 Raw Edit

finding factors

public text v1 · immutable
#2010637 ·published 2010-12-04 19:44 UTC
rendered paste body
x = 100
z = 0
while z < x:
        z = z + 1
        if not x % z: print z
print 'done'