#include<bits/stdc++.h> using namespace std; int main() { int n,i=1;; cin>>n; while(n>=i){ cout<<n<<endl; n--; } return 0; } /************************************************************** Problem: 1697 User: zzz1 Language: C++ Result: Accepted Time:9 ms Memory:2072 kb ****************************************************************/