This commit is contained in:
= 2020-11-08 22:21:37 +01:00
parent 6e30045b9c
commit 3913364885
3 changed files with 9 additions and 0 deletions

0
TaskX03/Makefile Normal file
View File

2
TaskX03/run Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
python TaskX03/run.py "$@"

7
TaskX03/run.py Normal file
View File

@ -0,0 +1,7 @@
import sys
for line in sys.stdin:
line = line.strip()
dl = len(line)
print("{} {}".format(dl, line))