summaryrefslogtreecommitdiff
path: root/python/io.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/io.py')
-rw-r--r--python/io.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/io.py b/python/io.py
new file mode 100644
index 0000000..aa16d4c
--- /dev/null
+++ b/python/io.py
@@ -0,0 +1,3 @@
+n, m = map(int, input().split())
+A = list(map(int, input().split()))
+print(n, m, *A)