#include int tco(int n) { printf("%d\n", n); return tco(n+1); } int main() { tco(0); return 0; }