I tried to solve this problem with python 2.7. I just began programming so I hoped that one of you amazing people could help me out!
this is what i currently have:
my_list = [2,3,4,5,6,7,8,9,10,11,]
for a in range(0, 39916800):
if (a % my_list == 0):
print("a")
THE ANSWER =
a = 2*3*4*5*6*7*8*9*10*11
a = a-1
for a in range (0,a):
if a % 2 == 0:
if a % 3 ==0:
if a % 4 ==0:
if a % 5 ==0:
if a % 6 ==0:
if a % 7 ==0:
if a % 8 ==0:
if a % 9 ==0:
if a % 10 ==0:
if a % 11 ==0:
print a
if a > 1:
break