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