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

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