attempt-1

This commit is contained in:
Zofia Bączyk 2020-11-08 17:45:51 +01:00
parent 886f851a69
commit 84bf82a748
2 changed files with 12 additions and 0 deletions

0
TaskA02/Makefile Normal file
View File

12
TaskA02/run Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python3
import sys
def pies(line):
for x in line.split():
if x.lower() == "pies":
print(line.rstrip('\n'))
for line in sys.stdin:
pies(line)