All pastes #2111024 Raw Edit

Untitled

public text v1 · immutable
#2111024 ·published 2012-02-08 04:21 UTC
rendered paste body
n = 20
s = xrange(11,20)
while True:
    if all(n % i == 0 for i in s):
        print n
        break
    n += 20