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