# Replace all the vowels with the letter 'a'. text = input('Enter some text: ') new_text = "" for letter in text: if letter in 'aeiouyAEIOUY': new_text = new_text + 'a' else: new_text = new_text + letter print("The modified text is:", new_text)