#include<bits/stdc++.h> using namespace std; void dfs(int x){ if(x>=50000)return; dfs(x+1); } int main(){ dfs(1); return 0; } //这个程序在我的电脑上会 RE