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