djfz-2020-s444344/TaskB01/run

10 lines
155 B
Plaintext
Raw Normal View History

2020-11-22 13:44:12 +01:00
#!/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