THE Philippine government has proven its inability to deal with the problems that are at the core of its responsibility. As the Aquino presidency enters its waning months, no amount of begging for the ...
ll fact(ll n) { if(n==0) return 1; ll res = 1; for (ll i = 2; i <= n; i++) res = res * i; return res; } ...