word = input("Enter some text ").upper() print(f"Count of A: {word.count('A')}") print(f"Count of E: {word.count('E')}") print(f"Count of I: {word.count('I')}") print(f"Count of O: {word.count('O')}") print(f"Count of U: {word.count('U')}")