#include <bits/stdc++.h> void calc(int n){ if(n<=100){ printf("%d\n",n); calc(n+1); } return; } int main(){ calc(1); return 0; }