#include<bits/stdc++.h> using namespace std; int n; int main(){ cin>>n; for(int a=1;a<=n;a++){ cout<<a<<endl; } return 0; }