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