10 lines
155 B
Plaintext
10 lines
155 B
Plaintext
|
#!/usr/bin/python3
|
||
|
|
||
|
import sys
|
||
|
import re
|
||
|
|
||
|
for line in sys.stdin:
|
||
|
if not re.search(r'Hamlet',line) == None:
|
||
|
print(line, end ='')
|
||
|
else: pass
|