attempt-1
This commit is contained in:
parent
886f851a69
commit
84bf82a748
0
TaskA02/Makefile
Normal file
0
TaskA02/Makefile
Normal file
12
TaskA02/run
Normal file
12
TaskA02/run
Normal 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)
|
||||
|
Loading…
Reference in New Issue
Block a user