def I():return int(input()) def MAP():return map(int,input().split()) def MAPs():return map(str,input().split()) def LI(): return list(map(int,input().split())) def TPL(): return tuple(map(int,input().split())) def S():return input() from collections import defaultdict,Counter,deque from copy import deepcopy from heapq import heapify,heappop,heappush from bisect import bisect_left,bisect_right from itertools import accumulate,product,permutations,combinations,combinations_with_replacement from math import gcd,ceil,floor,factorial,sqrt,pi,sin,cos,tan,radians,exp from functools import lru_cache import time import random import string alp=string.ascii_lowercase;ALP=string.ascii_uppercase inf=float('inf');mod=998244353;Mod=10**9+7 dydx=[(1,0),(0,1),(-1,0),(0,-1)] s=S() n=len(s) m=I() hash=[0] for i in range(n): hash.append((hash[-1]*100+ALP.index(s[i])+1)%mod) d=[defaultdict(int) for _ in range(11)] for l in range(1,n+1): for length in range(10): if l+length>n: break r=l+length h=(hash[r]-hash[l-1]*pow(100,r-l+1,mod))%mod d[r-l+1][h]+=1 ans=0 for _ in range(m): c=S() num=0 for i in range(len(c)): num=num*100+ALP.index(c[i])+1 num%=mod ans+=d[len(c)][num] print(ans)