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