function comprobarNumero(numero) { if (numero % 5 == 0 && numero % 11 == 0) { console.log("Si es divisible por 5 y 11 "); } else { console.log("No es divisible por 5 y 11 "); } } comprobarNumero(25); comprobarNumero(55);