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