#include<bits/stdc++.h>
using namespace std;
int main(){
	int n=1;
	while(n<=100){
		cout<<n<<endl;
		n++;
	}
}

/**************************************************************
	Problem: 1881
	User: linzihang
	Language: C++
	Result: Accepted
	Time:9 ms
	Memory:2072 kb
****************************************************************/