#include int element(int i, int j){ if(j==1|| i==j) return 1; return element(i-1,j-1)+element(i-1,j); } int main(){ printf("%d\n",element(6,4)); }