text = input('Enter some text: ') 

a = text.count('a')
a1 = text.count('A')
atotal = a + a1
print('Count of A:', atotal)
 
e = text.count('e')
e1 = text.count('E')
etotal = e + e1
print('Count of E:', etotal)

i = text.count('i')
i1 = text.count('I')
itotal = i + i1
print('Count of I:', itotal)
 
o = text.count('o')
o1 = text.count('O')
ototal = o + o1
print('Count of O:', ototal)

u = text.count('u')
u1 = text.count('U')
utotal = u + u1
print('Count of U:', utotal)