#include<bits/stdc++.h>
using namespace std;
int main(){
int n,z=1;
cin>>n;
while(z<=n){
cout<<z<<endl;
z++;
}
}
/**************************************************************
Problem: 1696
User: zhengzihao3
Language: C++
Result: Accepted
Time:19 ms
Memory:2072 kb
****************************************************************/