Run ID:128609

提交时间:2025-08-18 16:35:16

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