14 lines
203 B
Python
14 lines
203 B
Python
#!/usr/bin/python3
|
|
|
|
import sys
|
|
|
|
def line_c_h(line):
|
|
if 'Hamlet' in line:
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
for line in sys.stdin:
|
|
if line_c_h(line):
|
|
print(line, end='')
|