unsigned long int factorial(signed int numero){ if(numero <= 1) return 1; unsigned long int producto = 1, i; for(i = numero; i >= 1; i--) producto *= numero--; return producto;}
(( 1 / 0 )) &> /dev/null || { echo -e "stderrrrrrrrrrrrrrrrrrr";}