Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 166 Bytes

2386.md

File metadata and controls

14 lines (10 loc) · 166 Bytes

2386

Python

while True:
    S = input()
    if S == '#':
        break
    
    alpha = S[0]
    print(f"{alpha} {S[1:].lower().count(alpha)}")