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