#include int fac(int n){ int r=1; while(n>0) r*=n--; return r;}int main(){ printf("%d\n",(fac(6)+fac(5))/fac(4)); return 0;}
锦上添花--