ium = input("ENTER A WORD: ") A = ium.count("A") E = ium.count("E") I = ium.count("I") O = ium.count("O") U = ium.count("U") a = ium.count("a") e = ium.count("e") i = ium.count("i") o = ium.count("o") u = ium.count("u") n1 = A + a n2 = E + e n3 = I + i n4 = O + O n5 = U + u print("THERE ARE:") print("Count of A", n1) print("Count of E", n2) print("Count of I", n3) print("Count of O", n4) print("Count of U", n5)