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