li=[] for i in range(20): a=eval(input()) li.append(a) st=li[::-1] #通过设置列表的切片步长,实现反转 #print(st) for i,j in enumerate(st): print(f'N[{i}] = {j}')