import re password_re = re.compile(r"^([0-9]+)-([0-9]+) ([a-z]): ([a-z]+)$") passwords = [password_re.search(p).groups() for p in open("input.txt").read().split("\n")[:-1]] n = 0 for p in passwords: if int(p[0]) <= p[3].count(p[2]) <= int(p[1]): n += 1 print(n)