diff --git a/echoechoecho.py b/echoechoecho.py new file mode 100644 index 0000000..355b6f8 --- /dev/null +++ b/echoechoecho.py @@ -0,0 +1,8 @@ +print( + " ".join( + [ + input().strip(), + ] + * 3 + ) +)