djfz-2020-s444344/TaskA01/run
Zofia Bączyk 886f851a69 attempt-1
2020-11-08 17:02:04 +01:00

14 lines
193 B
Python

#!/usr/bin/python3
import sys
def ham(line):
if 'Hamlet' in line:
return True
else:
return False
for line in sys.stdin:
if ham(line):
print(line, end='')