n = [] for i in range(20): x = int(input()) n.append(x)
n.reverse()
for i in range(len(n)): print(“N[%d] = %d” % (i,n[i]))