t = input("Enter some text: ").lower() count_a = t.count("a") count_e = t.count("e") count_i = t.count("i") count_o = t.count("o") count_u = t.count("u") print("Count of A:", count_a) print("Count of E:", count_e) print("Count of I:", count_i) print("Count of O:", count_o) print("Count of U:", count_u)