string = input("Enter any string: ")
if string == 'x':
exit();
else:
newstr = string;
print("
Removing vowels from the given string");
vowels = ('a', 'e', 'i', 'o', 'u');
for x in string.lower():
if x in vowels:
newstr = newstr.replace(x,"");
print("New string after successfully removed all the vowels:");
print(newstr);