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