diff --git a/src/myscript.py b/src/myscript.py new file mode 100644 index 0000000..373f295 --- /dev/null +++ b/src/myscript.py @@ -0,0 +1,5 @@ +from sys import stdin, stdout + +txt = stdin.read() +output = txt.replace(' the ', ' ******a***** ') +stdout.write(output)