# El mismo calculo en Python: la libreria estandar ya lo trae
from math import prod

print(prod(range(2, 6)))
