def is_divisible(n):
    for i in range(1, 21):
        if n % i != 0:
            return False
    return True

def smallest_divisible(n):
	i = n
	while True:
    	if is_divisible(i):
    	    return i
    	i += n

print(smallest_divisible(20))