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