function int factorial(x) { int x; if (x == 0) return 1; else return x * factorial(x - 1); } begin { put itoa(factorial(5)); }