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