import fmt

main() {
	fmt.decimal(factorial(5))
}

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

	return x * factorial(x - 1)
}