fork download
  1. #include <inttypes.h>
  2. uint64_t F(x){return x<1 ? 0:x==1 ? 1:F(x-1)+F(x-2);}uint64_t G(H,B){uint64_t P=1;for(B=3;B<=H;B++)P*=F(B);return P;}main(U,Y){scanf("%d %d",&U,&Y);printf("%llu\n",G(U)/(G(U-Y)*G(Y)));}
  3.  
Success #stdin #stdout 0s 2160KB
stdin
14 7
stdout
14169550626