diff options
Diffstat (limited to 'contests/Round887/B/gen.py')
| -rw-r--r-- | contests/Round887/B/gen.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contests/Round887/B/gen.py b/contests/Round887/B/gen.py new file mode 100644 index 0000000..7cdb534 --- /dev/null +++ b/contests/Round887/B/gen.py @@ -0,0 +1,4 @@ +import sys + +for i in range((int(sys.argv[1]) // 2) + 1): + print(i, int(sys.argv[1]) - i) |
