#include <stdio.h> int fun(int i) { if(i==1) return 5; return fun( i-1)+2; } int main() { int x; x=fun(3); printf("%d\n",x); return 0; }