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