import sys str=input() c=input() i=0 for s in str: #print(s) if s.upper()==c or s.lower()==c: i+=1 print(i)
相关推荐