Number of Occurences of a Character

 Number of Occurences of a Character


a=input()
b=input()
print(a.count(b))

Comments