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