import sys

def func():

    try:

        temp = input().lower()

        te = input().lower()

        print(temp.count(te))

    except Exception:

        print(0)

if __name__ == "__main__":

    func()