import re import sys pattern = re.compile(r"^.*(Hamlet).*$") for line in sys.stdin: x = re.findall(pattern, line) if x: print(line.rstrip('\n'))