var input = prompt("Введите число: "); input = parseInt(input); function factorial(x) { if (x <= 1) return 1; return x * factorial(x - 1); } document.write("Факториал " + input + "! = " + factorial(input));