#include <cstdio> void dfs( int n ) { if (!n) while (1); dfs(n - 1); } int main() { dfs((int)1e6); return 0; }