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