13 lines
207 B
Python
13 lines
207 B
Python
import re
|
|
import sys
|
|
|
|
found_lines = []
|
|
|
|
|
|
for line in sys.stdin:
|
|
if re.search(r'\bHamlet\b', line):
|
|
found_lines.append(line.strip())
|
|
|
|
|
|
if found_lines:
|
|
print('\n'.join(found_lines)) |