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