11 lines
164 B
Python
11 lines
164 B
Python
|
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'))
|