#include int f(int n) { return f(n+1); } int main() { f(0); return 0; }