djfz-2020-s444344/TaskB01/run
Zofia Bączyk afdb5a15e8 attempt 1
2020-11-22 13:44:12 +01:00

10 lines
155 B
Python

#!/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