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

/**************************************************************
	Problem: 1882
	User: lvrenxiang
	Language: C++
	Result: Accepted
	Time:8 ms
	Memory:2072 kb
****************************************************************/