#include void inf(int n) { if(n == 0) { printf("done\n"); return; } inf(n-1); } int main() { inf(10000000); return 0; }