{"raw_statement":[{"iden":"problem statement","content":"You are given $N$ strings $S_1,S_2,\\ldots,S_N$ in this order.\nPrint $S_N,S_{N-1},\\ldots,S_1$ in this order."},{"iden":"constraints","content":"*   $1\\leq N \\leq 10$\n*   $N$ is an integer.\n*   $S_i$ is a string of length between $1$ and $10$, inclusive, consisting of lowercase English letters, uppercase English letters, and digits."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$S_1$\n$S_2$\n$\\vdots$\n$S_N$"},{"iden":"sample input 1","content":"3\nTakahashi\nAoki\nSnuke"},{"iden":"sample output 1","content":"Snuke\nAoki\nTakahashi\n\nWe have $N=3$, $S_1=$ `Takahashi`, $S_2=$ `Aoki`, and $S_3=$ `Snuke`.\nThus, you should print `Snuke`, `Aoki`, and `Takahashi` in this order."},{"iden":"sample input 2","content":"4\n2023\nYear\nNew\nHappy"},{"iden":"sample output 2","content":"Happy\nNew\nYear\n2023\n\nThe given strings may contain digits."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}