long fatorial (int n) { long fat ; if (n<=1) fat = 1 ; else fat = n * fatorial (n-1) ; return fat ; }