#include <ctype.h>
#include <stdio.h>
int main() {
char str[1001];
int i = 0;
fgets(str, sizeof(str), stdin);
while (str[i] != '\0') {
if (c != 'a' && c != 'e' && c != 'i' && c != 'o' && c != 'u' &&
c != 'A' && c != 'E' && c != 'I' && c != 'O' && c != 'U') {
putchar(str[i]);
}
i++;
}
return 0;
}