text = input("Enter some text: ") count_a = 0 count_e = 0 count_i = 0 count_o = 0 count_u = 0 for char in text: if char == 'A' or char == 'a': count_a += 1 if char == 'E' or char == 'e': count_e += 1 if char == 'I' or char == 'i': count_i += 1 if char == 'O' or char == 'o': count_o += 1 if char == 'U' or char == 'u': count_u += 1 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)