#include #include long long sump(int a, int b){ if(a==b) return b; return (long long)a*sump(a-1,b); } long long combi(int a, int b){ if(a