All pastes #2010638 Raw Edit

finding factors

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