using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; class Program { static void Main(string[] args) { new Magatro().Solve(); } } public class Magatro { private string S; private int M; private string[] C; const int AlphabetNum = 26; private void Scan() { S = Console.ReadLine(); M = int.Parse(Console.ReadLine()); C = new string[M]; for (int i = 0; i < M; i++) { C[i] = Console.ReadLine(); } } public void Solve() { Scan(); int anser = 0; foreach (string s in C) { anser += Count(s); } Console.WriteLine(anser); } private int Count(string s) { long search = 0; search = ToLong(s); long hash = 0; long digi = 1; for (int i = 0; i < s.Length - 1; i++) { hash += Map(S[i]) * digi; digi *= AlphabetNum; } int result = 0; for (int i = s.Length - 1; i < S.Length; i++) { hash += Map(S[i]) * digi; if (hash == search) result++; hash /= AlphabetNum; } return result; } private long ToLong(string s) { long result = 0; long digi = 1; for (int i = 0; i < s.Length; i++) { result += Map(s[i]) * digi; digi *= AlphabetNum; } return result; } private int Map(char c) { return c - 65; } }