x = int(input()) a = [] a.append(x) for i in range(10): a.append(x+x) x += x print(“N[%d] = %d”%(i,a[i]))