void rec( int n ) { // 320 mb = 10^7 * 32 if (n > 0) rec(n - 1); else while (1); } int main() { rec(1e6); }