summaryrefslogtreecommitdiff
path: root/python/io.py
diff options
context:
space:
mode:
authormzuenni <michi.zuendorf@gmail.com>2024-07-01 23:12:27 +0200
committermzuenni <michi.zuendorf@gmail.com>2024-07-01 23:12:27 +0200
commit8c33b4e0d3030cfed17fc64b4fe41133339f6d87 (patch)
tree01cee5af2193db5bd5c5bc2debe7c6492dd9ac00 /python/io.py
parent545265f2f3992e15c45f1bbb99e04a27e1fc7856 (diff)
-java + python
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)