# Author: Team #10
# Date: 2/17/23


def remove_vowels(string):
    return string.replace("a","").replace("e","").replace("i","").replace("o","").replace("u","")

    # string = string.replace("a", "")
    
# string = str(input())
# remove_vowels(string)

def remove_vowels_if_scott_isnt_a_jerk(string):
    for c in "aeiouAEIOU":
        string = string.replace(c, "")
        
    return string



