#include<iostream> using namespace std; int main(){ int n,i; cin>>n; i=n; while(i>=1){ cout<<i<<endl; i--; } return 0; }