Run ID:138180
提交时间:2025-11-23 17:05:15
#include <bits/stdc++.h> using namespace std; void sc(int x){ cout<<x<<endl; if(x<100){ sc(x+1); } } int main(){ sc(1); return 0; }