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