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