#include <bits/stdc++.h>
using namespace std;
int main(){
    int a=1;
    while(100>=a){
    	cout<<a<<endl;
    	a++;
	}
}
/**************************************************************
	Problem: 1881
	User: tonghuawei
	Language: C++
	Result: Accepted
	Time:14 ms
	Memory:2072 kb
****************************************************************/