attempt-1

This commit is contained in:
Zofia Bączyk 2020-11-08 17:02:04 +01:00
parent ba0b9953b6
commit 886f851a69
2 changed files with 13 additions and 0 deletions

0
TaskA01/Makefile Normal file
View File

13
TaskA01/run Normal file
View File

@ -0,0 +1,13 @@
#!/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='')