#include <iostream>
using namespace std;char a[255];
bool isVowel(char x){ char vocale[6] = { 'a', 'e', 'i', 'o', 'u'}; if (!x){ return false; } for (int i = 0; i < 6; i++){ if (x == vocale[i]){ return true; } } return false;}
int main(){ cout << "Introduceti numarul caracterelor " ; int n; cin >> n; for (int i = 0; i < n; i++){ cin >> a[i]; } for (int i = 0; i < n; i++){ if (isVowel(a[i]) && isVowel(a[i + 1])){ for (int j = i ; j < n; j++) a[j] = a[j + 2]; } } for (int i = 0; i < n; i++){ cout << a[i]; }
}