Elimina vocales
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
Dada una frase (terminada con un salto de linea), escribe la misma frase pero eliminando las vocales.
Input Format
Una frase terminada con un salto de linea L
Constraints
1 <= L <= 100
Output Format
La frase sin las vocales.
Sample Input 0
hola mundo!
Sample Output 0
hl mnd!
Sample Input 1
lalalA
Sample Output 1
lll
Sample Input 2
xa, XA, xE, xI, xO, xu
Sample Output 2
x, X, x, x, x, x
Autoria: Rusben