#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; for(int i=m;i>=1;i--){ cout<<i<<endl; } return 0; }