#include<bits/stdc++.h> using namespace std; void a(int x){ if(x>100){ return; } cout<<x++<<endl; a(x); } int main(){ int x=1; a(x); return 0; }