{"raw_statement":[{"iden":"problem statement","content":"Print all non-negative integers less than or equal to $N$ in descending order."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 100$\n*   $N$ is an integer."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"3"},{"iden":"sample output 1","content":"3\n2\n1\n0\n\nWe have four non-negative integers less than or equal to $3$, which are $0$, $1$, $2$, and $3$.  \nTo print them in descending order, print $3$ in the first line, $2$ in the second, $1$ in the third, and $0$ in the fourth."},{"iden":"sample input 2","content":"22"},{"iden":"sample output 2","content":"22\n21\n20\n19\n18\n17\n16\n15\n14\n13\n12\n11\n10\n9\n8\n7\n6\n5\n4\n3\n2\n1\n0"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}