#include int fun(int x) { if (x > 1) return x + fun(x - 1); else return 1; } void main() { printf("%d\n", fun(100)); }