#include<bits/stdc++.h> using namespace std; int main() { int N[21]; for(int i=0; i<=19; i++) cin>>N[i]; for(int i=0; i<=19; i++) cout<<"N["<<i<<"] = "<<N[19-i]<<endl; return 0; }