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