int s(int x, int n) { return (n==0) ? 1 : x*s(x, n-1); }
Oct 01 2008, 20:06