my_list=[]
for i in range(1,11):
    j=2**i
    my_list.append(j)
    print(j)