import log

main() {
	log.number(factorial(5))
}

factorial(x Int) -> Int {
	if x <= 1 {
		return 1
	}

	return x * factorial(x - 1)
}